home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 05.zip / BS1 part 5 / BaudBandit.adf / REXX / Init.baud < prev    next >
Text File  |  1989-07-14  |  334b  |  17 lines

  1. /* Init.baud
  2.  
  3.    Place in the Init configuration string as '\mInit' to be run at startup.
  4.    This changes the 2nd BaudBandit device to modem0.device
  5. */
  6.  
  7. if address() = 'BAUD2' then DEVICE 'modem0/0'
  8.  
  9. OPTIONS RESULTS
  10.  
  11. Status Serial
  12. dev = RESULT
  13.  
  14. /* Show what device the program is using */
  15. say 'Address' address() ' using device' dev
  16.  
  17.